Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update opentelemetry-go monorepo - autoclosed #6034

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 22, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
go.opentelemetry.io/otel v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel v1.28.1-0.20240821153356-fe6c67e7e9b4 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/bridge/opencensus v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.4.0 -> v0.5.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/prometheus v0.50.0 -> v0.51.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.4.0 -> v0.5.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/log v0.4.1-0.20240821153356-fe6c67e7e9b4 -> v0.5.0 age adoption passing confidence
go.opentelemetry.io/otel/log v0.4.0 -> v0.5.0 age adoption passing confidence
go.opentelemetry.io/otel/metric v1.28.1-0.20240821153356-fe6c67e7e9b4 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk v1.28.1-0.20240821153356-fe6c67e7e9b4 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk/log v0.4.1-0.20240821153356-fe6c67e7e9b4 -> v0.5.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk/log v0.4.0 -> v0.5.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk/metric v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/trace v1.28.0 -> v1.29.0 age adoption passing confidence
go.opentelemetry.io/otel/trace v1.28.1-0.20240821153356-fe6c67e7e9b4 -> v1.29.0 age adoption passing confidence

Release Notes

open-telemetry/opentelemetry-go (go.opentelemetry.io/otel)

v1.29.0: /v0.51.0/v0.5.0

Overview

This release is the last to support Go 1.21. The next release will require at least Go 1.22.

Added
  • Add MacOS ARM64 platform to the compatibility testing suite. (#​5577)
  • Add InstrumentationScope field to SpanStub in go.opentelemetry.io/otel/sdk/trace/tracetest, as a replacement for the deprecated InstrumentationLibrary. (#​5627)
  • Make the initial release of go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. This new module contains an OTLP exporter that transmits log telemetry using gRPC. This module is unstable and breaking changes may be introduced. See our versioning policy for more information about these stability guarantees. (#​5629)
  • Add Walk function to TraceState in go.opentelemetry.io/otel/trace to iterate all the key-value pairs. (#​5651)
  • Bridge the trace state in go.opentelemetry.io/otel/bridge/opencensus. (#​5651)
  • Zero value of SimpleProcessor in go.opentelemetry.io/otel/sdk/log no longer panics. (#​5665)
  • The FilterProcessor interface type is added in go.opentelemetry.io/otel/sdk/log/internal/x. This is an optional and experimental interface that log Processors can implement to instruct the Logger if a Record will be processed or not. It replaces the existing Enabled method that is removed from the Processor interface itself. It does not fall within the scope of the OpenTelemetry Go versioning and stability policy and it may be changed in backwards incompatible ways or removed in feature releases. (#​5692)
  • Support Go 1.23. (#​5720)
Changed
  • NewMemberRaw, NewKeyProperty and NewKeyValuePropertyRaw in go.opentelemetry.io/otel/baggage allow UTF-8 string in key. (#​5132)
  • Processor.OnEmit in go.opentelemetry.io/otel/sdk/log now accepts a pointer to Record instead of a value so that the record modifications done in a processor are propagated to subsequent registered processors. (#​5636)
  • SimpleProcessor.Enabled in go.opentelemetry.io/otel/sdk/log now returns false if the exporter is nil. (#​5665)
  • Update the concurrency requirements of Exporter in go.opentelemetry.io/otel/sdk/log. (#​5666)
  • SimpleProcessor in go.opentelemetry.io/otel/sdk/log synchronizes OnEmit calls. (#​5666)
  • The Processor interface in go.opentelemetry.io/otel/sdk/log no longer includes the Enabled method. See the FilterProcessor interface type added in go.opentelemetry.io/otel/sdk/log/internal/x to continue providing this functionality. (#​5692)
  • The SimpleProcessor type in go.opentelemetry.io/otel/sdk/log is no longer comparable. (#​5693)
  • The BatchProcessor type in go.opentelemetry.io/otel/sdk/log is no longer comparable. (#​5693)
Fixed
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5584)
  • Pass the underlying error rather than a generic retry-able failure in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp and go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5541)
  • Correct the Tracer, Meter, and Logger names used in go.opentelemetry.io/otel/example/dice. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/namedtracer. (#​5612)
  • Correct the Tracer name used in go.opentelemetry.io/otel/example/opencensus. (#​5612)
  • Correct the Tracer and Meter names used in go.opentelemetry.io/otel/example/otel-collector. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/passthrough. (#​5612)
  • Correct the Meter name used in go.opentelemetry.io/otel/example/prometheus. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/zipkin. (#​5612)
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​5641)
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​5650)
  • Stop percent encoding header environment variables in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc, go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp, go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp (#​5705)
  • Remove invalid environment variable header keys in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc, go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp, go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp (#​5705)
Removed
  • The Enabled method of the SimpleProcessor in go.opentelemetry.io/otel/sdk/log is removed. (#​5692)
  • The Enabled method of the BatchProcessor in go.opentelemetry.io/otel/sdk/log is removed. (#​5692)
What's Changed

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added dependencies Pull requests that update a dependency file Skip Changelog Allow PR to succeed without requiring an addition to the CHANGELOG labels Aug 22, 2024
@renovate renovate bot requested a review from MrAlias as a code owner August 22, 2024 20:47
@renovate renovate bot requested a review from a team August 22, 2024 20:47
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from 4539166 to ab46682 Compare August 22, 2024 21:20
@renovate renovate bot changed the title chore(deps): update opentelemetry-go monorepo to 002c0a4 chore(deps): update opentelemetry-go monorepo to 9402143 Aug 22, 2024
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 5 times, most recently from 7f79984 to 36fa0f2 Compare August 23, 2024 06:51
@dmathieu
Copy link
Member

These upgrades are due to our use of otel-go from main since #5993 uses changes that will only be available with the next release.
We don't need those upgrades per-se (and we'll stop getting them after the next release).

So I'd suggest we stop doing these upgrades, and move back to the stable release once it's available.

@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from 36fa0f2 to 8803996 Compare August 23, 2024 09:55
@renovate renovate bot changed the title chore(deps): update opentelemetry-go monorepo to 9402143 chore(deps): update opentelemetry-go monorepo to 30fc407 Aug 23, 2024
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 2 times, most recently from ce53a1d to 1f9a81f Compare August 23, 2024 16:31
@renovate renovate bot changed the title chore(deps): update opentelemetry-go monorepo to 30fc407 chore(deps): update opentelemetry-go monorepo to 2a54df7 Aug 23, 2024
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from 1f9a81f to e1bebab Compare August 23, 2024 20:26
@renovate renovate bot changed the title chore(deps): update opentelemetry-go monorepo to 2a54df7 chore(deps): update opentelemetry-go monorepo to 6b1d94f Aug 23, 2024
Copy link
Contributor Author

renovate bot commented Aug 23, 2024

ℹ Artifact update notice

File name: zpages/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: samplers/probability/consistent/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: samplers/jaegerremote/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: samplers/jaegerremote/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: samplers/aws/xray/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: propagators/ot/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: propagators/opencensus/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: propagators/opencensus/examples/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: propagators/jaeger/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: propagators/b3/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: propagators/aws/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: propagators/autoprop/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: processors/baggagecopy/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/runtime/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/runtime/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/runtime/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/net/http/otelhttp/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/net/http/otelhttp/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/net/http/otelhttp/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/net/http/httptrace/otelhttptrace/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/net/http/httptrace/otelhttptrace/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/net/http/httptrace/otelhttptrace/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/host/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/host/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/google.golang.org/grpc/otelgrpc/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/google.golang.org/grpc/otelgrpc/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/google.golang.org/grpc/otelgrpc/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/labstack/echo/otelecho/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/labstack/echo/otelecho/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/labstack/echo/otelecho/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/gorilla/mux/otelmux/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/gorilla/mux/otelmux/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/gorilla/mux/otelmux/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/gin-gonic/gin/otelgin/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/emicklei/go-restful/otelrestful/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/emicklei/go-restful/otelrestful/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/emicklei/go-restful/otelrestful/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/aws/aws-lambda-go/otellambda/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrgen/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: instrgen/driver/testdata/interface/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: exporters/autoexport/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: detectors/gcp/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: detectors/azure/azurevm/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: detectors/aws/lambda/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: detectors/aws/eks/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: detectors/aws/ecs/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: detectors/aws/ec2/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: config/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: bridges/prometheus/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: bridges/otelzap/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: bridges/otelslog/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0
File name: bridges/otellogrus/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.29.0

@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from e1bebab to 121133c Compare August 23, 2024 21:15
@renovate renovate bot changed the title chore(deps): update opentelemetry-go monorepo to 6b1d94f fix(deps): update opentelemetry-go monorepo Aug 23, 2024
@renovate renovate bot changed the title fix(deps): update opentelemetry-go monorepo fix(deps): update opentelemetry-go monorepo - autoclosed Aug 23, 2024
@renovate renovate bot closed this Aug 23, 2024
@renovate renovate bot deleted the renovate/opentelemetry-go-monorepo branch August 23, 2024 23:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file Skip Changelog Allow PR to succeed without requiring an addition to the CHANGELOG
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant